home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
C
/
LIB
/
UNIXLIB37B
/
!UnixLib37
/
src
/
unix
/
c
/
chown
< prev
next >
Wrap
Text File
|
1996-11-09
|
808b
|
33 lines
/****************************************************************************
*
* $Source: /unixb/home/unixlib/source/unixlib37/src/unix/c/RCS/chown,v $
* $Date: 1996/10/30 21:59:01 $
* $Revision: 1.2 $
* $State: Rel $
* $Author: unixlib $
*
* $Log: chown,v $
* Revision 1.2 1996/10/30 21:59:01 unixlib
* Massive changes made by Nick Burret and Peter Burwood.
*
* Revision 1.1 1996/04/19 21:35:27 simon
* Initial revision
*
***************************************************************************/
static const char rcs_id[] = "$Id: chown,v 1.2 1996/10/30 21:59:01 unixlib Rel $";
#include <unistd.h>
#include <unixlib/types.h>
#define IGNORE(x) x = x
int
chown (const char *file, __uid_t owner, __gid_t group)
{
IGNORE (file);
IGNORE (owner);
IGNORE (group);
return (0);
}